From 8ae81bb3956a27d6cc17e04bdbf089882091f5a2 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Mon, 19 Aug 2013 15:41:49 +0200 Subject: [PATCH] icon-theme: Use "Scale" for key as per the spec The latest spec proposal uses "Scale", not "OutputScale", so use this. --- gtk/gtkicontheme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index 7b9faf10b7..b6066062fc 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -3160,8 +3160,8 @@ theme_subdir_load (GtkIconTheme *icon_theme, else threshold = 2; - if (g_key_file_has_key (theme_file, subdir, "OutputScale", NULL)) - scale = g_key_file_get_integer (theme_file, subdir, "OutputScale", NULL); + if (g_key_file_has_key (theme_file, subdir, "Scale", NULL)) + scale = g_key_file_get_integer (theme_file, subdir, "Scale", NULL); else scale = 1; -- 2.30.2